<?xml version="1.0" encoding="windows-1250"?>
<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' >
 <xsl:output method="xml" version="1.0"  encoding="windows-1250" indent="yes"/>

 <xsl:template match="/">
  <xsl:comment>Samohlásky v abecedě</xsl:comment>
  <xsl:element name="samohlasky">
   <xsl:for-each select="abeceda/*">
    <xsl:if test=".='A'or .='E'or .='I'or .='Y'or .='O'or .='U'">
     <xsl:value-of select="."/>
    </xsl:if>
   </xsl:for-each>
  </xsl:element>
 </xsl:template>

</xsl:stylesheet>